home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1991 / 06 / alib / isgraph.asm < prev    next >
Assembly Source File  |  1991-08-22  |  240b  |  22 lines

  1.     include    asm.inc
  2.  
  3.     public    isgraph
  4.  
  5.     .code
  6.  
  7. ;;    isgraph
  8. ;
  9. ;    entry    AL    character
  10. ;    exit    Zf    if printable character (not space)
  11. ;
  12. isgraph proc
  13.     cmp    al,'!'
  14.     jb    isg1
  15.     cmp    al,'~'
  16.     ja    isg1
  17.     cmp    al,al
  18. isg1:    ret
  19. isgraph endp
  20.  
  21.     end
  22.